home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / transfer < prev    next >
Text File  |  2001-04-06  |  1KB  |  30 lines

  1. SYNOPSIS
  2.         int transfer(object item, object dest)
  3.  
  4. DESCRIPTION
  5.         This efun is for backward compatibility only. It is only
  6.         available in compat mode.
  7.  
  8.         Move the object "item" to the object "dest". All kinds of
  9.         tests are done, and a number is returned specifying the
  10.         result:
  11.  
  12.         0: Success.
  13.         1: To heavy for destination.
  14.         2: Can't be dropped.
  15.         3: Can't take it out of it's container.
  16.         4: The object can't be inserted into bags etc.
  17.         5: The destination doesn't allow insertions of objects.
  18.         6: The object can't be picked up.
  19.  
  20.         If an object is transfered to a newly created object, make
  21.         sure that the new object first is transfered to it's
  22.         destination.
  23.  
  24.         The efun calls add_weight(), drop(), get(), prevent_insert(),
  25.         add_weight(), and can_put_and_get() where needed.
  26.  
  27. SEE ALSO
  28.          move_object(E), drop(A), get(A), prevent_insert(A),
  29.          can_put_and_get(A), add_weight(A)
  30.